home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / gnulib-68881 / frexp.s < prev    next >
Text File  |  1995-06-29  |  2KB  |  47 lines

  1. /*-
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * This code is derived from software contributed to Berkeley by
  6.  * the Systems Programming Group of the University of Utah Computer
  7.  * Science Department.
  8.  *
  9.  * Redistribution and use in source and binary forms are permitted
  10.  * provided that: (1) source distributions retain this entire copyright
  11.  * notice and comment, and (2) distributions including binaries display
  12.  * the following acknowledgement:  ``This product includes software
  13.  * developed by the University of California, Berkeley and its contributors''
  14.  * in the documentation or other materials provided with the distribution
  15.  * and in all advertising materials mentioning features or use of this
  16.  * software. Neither the name of the University nor the names of its
  17.  * contributors may be used to endorse or promote products derived
  18.  * from this software without specific prior written permission.
  19.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  20.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  21.  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  22.  */
  23.  
  24. #if defined(LIBC_SCCS) && !defined(lint)
  25.     .asciz "@(#)frexp.s    5.1 (Berkeley) 5/12/90"
  26. #endif /* LIBC_SCCS and not lint */
  27.  
  28. #include "defs.h"
  29.  
  30. /*
  31.  * double frexp(val, eptr)
  32.  * returns: x s.t. val = x * (2 ** n), with n stored in *eptr
  33.  */
  34. ENTRY(frexp)
  35.     fmoved        sp@(4),fp1
  36.     fgetmanx    fp1,fp0
  37.     fgetexpx    fp1
  38.     fmovel        fp1,d0
  39.     addql        #1,d0
  40.     movel        sp@(12),a0
  41.     movel        d0,a0@
  42.     fdivl        #2,fp0
  43.     fmoved        fp0,sp@-
  44.     movel        sp@+,d0
  45.     movel        sp@+,d1
  46.     rts
  47.